home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 35
/
Amiga Format AFCD35 (Issue 119, Jan 1999).iso
/
-in_the_mag-
/
reader_requests
/
excption
/
boolean.h
< prev
next >
Wrap
C/C++ Source or Header
|
1998-11-06
|
2KB
|
48 lines
/**************************************************************************/
/* */
/* BOOLEAN HANDLER */
/* ========================================== */
/* */
/* */
/* MODULE : Boolean */
/* NOM : Boolean.h */
/* FONCTION : */
/* */
/* RESPONSABLE : HEWES Gerald */
/* TEL : 33 (1) 46 24 20 27 */
/* */
/**************************************************************************/
/**************************************************************************/
/* */
/* 880000 HEW First Released Version V 0.10 */
/* */
/**************************************************************************/
#ifndef BOOLEAN_H
#define BOOLEAN_H
#include <exec/types.h>
typedef unsigned int BOOLEAN;
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#define VRAI 1
#define FAUX 0
#define NULLE 0
#define forever for(;;)
#endif
/************************* CIVILISATION ENDS HERE ***********************/